home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / Tool Chest / Interfaces / Universal Interfaces 2.0a3 / CIncludes / iomanip.h < prev    next >
Encoding:
Text File  |  1994-12-14  |  1014 b   |  38 lines  |  [TEXT/MPS ]

  1. //     IOStreams Package
  2. //     Steve Teale April 1992
  3. //     Copyright Symantec Corp 1990-1992. All Rights Reserved.
  4. //
  5. //    Some portions Copyright © 1994 Apple Computer Inc.
  6.  
  7. #ifndef __IOMANIP_H
  8. #define __IOMANIP_H
  9.  
  10. #include <iomdefs.h>
  11. #include <iostream.h>
  12.  
  13. ios &_iomanip_resetiosflags(ios&, long);
  14. inline SMANIP<long> resetiosflags(long f) 
  15.     { return SMANIP<long>(_iomanip_resetiosflags,f); }
  16.  
  17. ios &_iomanip_setfill(ios&, int);
  18. inline SMANIP<int> setfill(int filler)
  19.     { return SMANIP<int>(_iomanip_setfill,filler); }
  20.  
  21. ios &_iomanip_setiosflags(ios&, long);
  22. inline SMANIP<long> setiosflags(long f)
  23.     { return SMANIP<long>(_iomanip_setiosflags,f); }
  24.  
  25. ios &_iomanip_setprecision(ios&, int);
  26. inline SMANIP<int> setprecision(int n)
  27.     { return SMANIP<int>(_iomanip_setprecision,n); }
  28.  
  29. ios &_iomanip_setw(ios&, int);
  30. inline SMANIP<int> setw(int w)
  31.     { return SMANIP<int>(_iomanip_setw,w); }
  32.  
  33. ios &_iomanip_setbase(ios&, int);
  34. inline SMANIP<int> setbase(int n)
  35.     { return SMANIP<int>(_iomanip_setbase,n); }
  36.  
  37. #endif  // __IOMANIP_H
  38.